home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
pmode
/
code32
/
strcpy.rt
< prev
next >
Wrap
Text File
|
1993-01-08
|
499b
|
24 lines
public _strcpy
;░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
; Copy ASCIIZ string to another
; In:
; ESI -> source string
; EDI -> destination string
; Out:
; None
;░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
_strcpy:
push ax
push esi
push edi
strcpyl:
lodsb
stosb
or al,al
jnz strcpyl
pop edi
pop esi
pop ax
ret